home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
html
/
vendors
/
adobe
/
software
/
Removeit2
< prev
next >
Wrap
Text File
|
1997-06-17
|
683b
|
28 lines
#!/bin/csh -f
if ( `versions sgips | grep "sgips.sw" | wc -l` > 0 ) then
echo "Found installation... "
echo " "
echo " "
echo "Do you want to remove Adobe Photoshop Performance Package (y/n)? \c"
set ans=($<)
if ( $ans == 'y') then
versions remove sgips
echo ""
echo "Done"
echo " "
endif
else
echo "no install"
echo "Done"
echo " "
echo ""
echo ""
echo "It appears that the Photoshop Performance Package is not currently installed."
echo "Exiting..."
echo ""
echo ""
endif
echo "Press Enter to exit this window... \c"
set a = $<